home *** CD-ROM | disk | FTP | other *** search
Text File | 1998-08-11 | 397 b | 13 lines | [TEXT/ScoM] |
- rotate-fc count sequence
-
- This function enables the generation of a number of symbol patterns emanating from the sequential forward rotation with count of a single pattern.
-
- (rotate-fc 5 '(a b c d e f g h i j k l))
-
- => ((a b c d e f g h i j k l)
- (b c d e f g h i j k l a)
- (c d e f g h i j k l a b)
- (d e f g h i j k l a b c)
- (e f g h i j k l a b c d)
- (f g h i j k l a b c d e))
-